home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-12-30 | 410 b | 21 lines |
- #
- # Makefile for the ILLUSTRT program.
- #
- # Gershon Elber, June 1993
- #
-
- include ../makeflag.unx
-
- OBJECTS = illustrt.o intersct.o spltsort.o
-
- illustrt: $(OBJECTS)
- $(CC) $(CFLAGS) -o illustrt $(OBJECTS) $(LIBS) $(MORELIBS) -lm
-
- install: illustrt
- mv -f illustrt $(BIN_DIR)
-
- # Dependencies starts here - do not touch, generated automatically.
- illustrt.o: program.h
- intersct.o: program.h
- spltsort.o: program.h
-